home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / domacnost a kancelar / scribus / scribus-1.3.3.7-win32-install.exe / lib / lib-old / rand.py < prev    next >
Text File  |  2004-07-27  |  298b  |  14 lines

  1. # Module 'rand'
  2. # Don't use unless you want compatibility with C's rand()!
  3.  
  4. import whrandom
  5.  
  6. def srand(seed):
  7.     whrandom.seed(seed%256, seed/256%256, seed/65536%256)
  8.  
  9. def rand():
  10.     return int(whrandom.random() * 32768.0) % 32768
  11.  
  12. def choice(seq):
  13.     return seq[rand() % len(seq)]
  14.